From: Andreas Schwab Date: Sun, 8 Feb 2004 22:30:54 +0000 (+0000) Subject: (tar-parse-octal-integer-safe): Add missing format X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~24222 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=25226f6f0f5153ee5c8bcba626b6949d26d90ce6;p=emacs.git (tar-parse-octal-integer-safe): Add missing format string argument. --- diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index be17e70c785..dccbb6f82df 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el @@ -1,6 +1,6 @@ ;;; tar-mode.el --- simple editing of tar files from GNU emacs -;; Copyright (C) 1990,91,93,94,95,96,97,98,99,2000,2001 +;; Copyright (C) 1990,91,93,94,95,96,97,98,99,2000,01,2004 ;; Free Software Foundation, Inc. ;; Author: Jamie Zawinski @@ -289,7 +289,7 @@ write-date, checksum, link-type, and link-name." (dotimes (i L) (if (or (< (aref string i) ?0) (> (aref string i) ?7)) - (error "`%c' is not an octal digit")))) + (error "`%c' is not an octal digit" (aref string i))))) (tar-parse-octal-integer string))